home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / decprom / ds3100.md / devFsOpTable.c < prev    next >
C/C++ Source or Header  |  1990-02-16  |  1KB  |  62 lines

  1. /* 
  2.  * devFsOpTable.c --
  3.  *
  4.  *    The operation tables for the file system devices.  
  5.  *
  6.  * Copyright 1987, 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifdef notdef
  17. static char rcsid[] = "$Header: /sprite/src/boot/decprom/ds3100.md/RCS/devFsOpTable.c,v 1.1 90/02/16 16:19:06 shirriff Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20.  
  21. #include "sprite.h"
  22. #include <kernel/dev.h>
  23. #include <kernel/devFsOpTable.h>
  24.  
  25. extern ReturnStatus DecPromDevOpen();
  26. extern ReturnStatus DecPromDevRead();
  27. static ReturnStatus NullProc();
  28.  
  29.  
  30. /*
  31.  * Device type specific routine table:
  32.  *    This is for the file-like operations as they apply to devices.
  33.  *    DeviceOpen
  34.  *    DeviceRead
  35.  *    DeviceWrite
  36.  *    DeviceIOControl
  37.  *    DeviceClose
  38.  *    DeviceSelect
  39.  *    BlockDeviceAttach
  40.  */
  41.  
  42.  
  43. DevFsTypeOps devFsOpTable[] = {
  44.     /*
  45.      * Simple interface to the routines in the Dec PROM.
  46.      */
  47.     {0, DecPromDevOpen, DecPromDevRead,
  48.             NullProc, NullProc, 
  49.             NullProc, NullProc, NullProc},
  50.  
  51. };
  52.  
  53. int devNumDevices = sizeof(devFsOpTable) / sizeof(DevFsTypeOps);
  54.  
  55.  
  56. static ReturnStatus
  57. NullProc()
  58. {
  59.     return(SUCCESS);
  60. }
  61.  
  62.